home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20031118-20041115 / 000438_slash_dev_slas…_2000@yahoo.com_Mon Nov 15 12:41:29 2004.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: newsmaster.cc.columbia.edu!panix!newsfeed.media.kyoto-u.ac.jp!postnews.google.com!c13g2000cwb.googlegroups.com!not-for-mail
  2. From: "Mark Sapiro" <slash_dev_slash_null_2000@yahoo.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: beginners problems
  5. Date: 13 Nov 2004 17:52:25 -0800
  6. Organization: http://groups.google.com
  7. Lines: 43
  8. Message-ID: <1100397145.238051.4410@c13g2000cwb.googlegroups.com>
  9. References: <cn5ll6$ptc$1@news1.zwoll1.ov.home.nl>
  10. NNTP-Posting-Host: 209.182.169.133
  11. Mime-Version: 1.0
  12. Content-Type: text/plain; charset="iso-8859-1"
  13. X-Trace: posting.google.com 1100397148 13133 127.0.0.1 (14 Nov 2004 01:52:28 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: Sun, 14 Nov 2004 01:52:28 +0000 (UTC)
  16. User-Agent: G2/0.2
  17. Complaints-To: groups-abuse@google.com
  18. Injection-Info: c13g2000cwb.googlegroups.com; posting-host=209.182.169.133;
  19.    posting-account=iQNWIg0AAAAD2fStXNC9nwGlPdSqjWrI
  20. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15223
  21.  
  22. Roelof Wobben wrote:
  23. >
  24. > Im trying to make a connection from a win98 machine to a Win Xp
  25. machine
  26. > trough Kermit. But al what i try , no connections.
  27. >
  28. > When i use the dialer with a telnet or another template all i get is
  29. no
  30. > connection. The two computers are connected to each other trough a
  31. router.
  32. >
  33. > How do i make a connection ?? I read all the faq en manuals but i
  34. can't find
  35. > the answer. Please help me.
  36.  
  37. What are you trying to connect to? If you are trying to Telnet from A
  38. to B for example, you need a telnet demon listening on port 23 on B to
  39. connect to.
  40.  
  41. If you want to do Kermit file transfers between A and B, you need a
  42. Kermit on each machine - one connecting and one answering the connect.
  43. You can use "host mode" or IKSD for the listener, but there are some
  44. unresolved issues with IKSD.
  45.  
  46. The simplest way is to have a K95 on each machine and tell one to
  47. listen on a port (e.g. 3000) and enter server mode upon connect with
  48.  
  49. set network type tcp
  50. set host /server * 3000
  51.  
  52. and then connect from the other machine with
  53.  
  54. set network type tcp
  55. set host xxxx 3000
  56.  
  57. where xxxx is either the name or the IP address of the other machine.
  58. Then, after the second machine is connected, you can do rcd, rdir, get,
  59. put, etc. to navigate and transfer files.
  60.  
  61. --
  62. Mark Sapiro msapiro at value net      The highway is for gamblers,
  63. San Francisco Bay Area, California    better use your sense - B. Dylan
  64.